home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / c_course.zip / RECURSON.C < prev    next >
Text File  |  1989-12-30  |  256b  |  18 lines

  1. main()
  2. {
  3. int index;
  4.  
  5.    index = 8;
  6.    count_dn(index);
  7. }
  8.  
  9. count_dn(count)
  10. int count;
  11. {
  12.    count--;
  13.    printf("The value of the count is %d\n",count);
  14.    if (count > 0)
  15.       count_dn(count);
  16.    printf("Now the count is %d\n",count);
  17. }
  18.